31338daea351139504dd9329022fdbe992d5ce17,brewing/src/main/java/io/spring/cloud/samples/brewery/bottling/Bottler.java,Bottler,bottle,#Wort#String#String#,33

Before Change


     */
    @Override
    public void bottle(Wort wort, String processId, String testCommunicationType) {
        log.info("Current span is [{}]", SpanContextHolder.isTracing() ? SpanContextHolder.getCurrentSpan() : "");
        log.info("Process ID from headers {}", processId);
        String groupKey = "bottling";
        String commandKey = "bottle";

After Change


     */
    @Override
    public void bottle(Wort wort, String processId, String testCommunicationType) {
        log.info("I'm in the bottling service. Current traceid is [{}]", SpanContextHolder.isTracing() ? SpanContextHolder.getCurrentSpan().getTraceId() : "");
        log.info("Process ID from headers {}", processId);
        String groupKey = "bottling";
        String commandKey = "bottle";